home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-06-18 | 2.1 KB | 66 lines | [GPPS/LIST] |
-
-
- %!PS-Adobe-1.0
- %%Title: Spiral
- %%DocumentFonts: (atend)
- %%Creator: Price M. Collins
- %%CreationDate: 11/22/85 12:44 PM
- %%Pages: (atend)
- %%BoundingBox: 0 0 612 792
- %%EndComments
- grestoreall
- initgraphics
- /pageproc {} def
- %%EndProlog
- % Spiral text PostScript program
- % Spiraltext spirals text clockwise on baseline centered at (0,0)
- % Takes 4 arguments: string to print & starting fontsize, radius & angle
- /Spiraltext
- { $Spiraldict begin
- /startangle exch def /originalradius exch def /fontsize exch def /str exch def
- /radius originalradius def /totalangle 0 def /anglemoved 15 def
- /Times-Roman findfont fontsize scalefont setfont
- gsave startangle rotate
- { fontsize .4 gt radius 10 gt and
- { str
- { /charcode exch def ( ) dup 0 charcode put showandrotate } forall
- } { exit } ifelse
- } loop
- grestore end
- } def
- /$Spiraldict 16 dict def
- $Spiraldict begin
- /showandrotate % show character upright on spiral & rotate clockwise by character angle.
- { /char exch def
- anglemoved 15 gt fontsize .4 gt and
- { /anglemoved anglemoved 15 sub def
- /fontsize fontsize .25 sub def
- /Times-Roman findfont fontsize scalefont setfont } if
- /charwidth char stringwidth pop 2 div def
- /halfangle charwidth 2 radius fontsize 4 div add mul 3.141593 mul div 360 mul def
- gsave
- halfangle neg rotate % Rotate clockwise by half the angle of character width
- radius 0 translate % Translate out to spiral
- 90 halfangle add neg rotate % Position character upright on baseline
- charwidth neg 0 moveto char
- anglemoved 30 lt {show} if
- grestore
- /fullangle halfangle 2 mul def
- fullangle neg rotate
- /totalangle totalangle fullangle add def
- /anglemoved anglemoved fullangle add def
- /radius 1 totalangle 2400 div sub originalradius mul def
- } def
- end
- % Main program
- 300 400 translate% start at center of page
- topline
- 20 60 180
-
- Spiraltext
- showpage
- %%Trailer
- %%Pages: 0
- %%DocumentFonts:
-